home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / aix_IY52242.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  47 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(14434);
  10.  script_version ("$Revision: 1.2 $");
  11.  name["english"] = "AIX 5.2 : IY52242";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is missing AIX Critical Security Patch number IY52242
  17. (logredo core dumps on JFS2 log greater than 2047MB).
  18.  
  19. You should install this patch for your system to be up-to-date.
  20.  
  21. Solution : http://www-912.ibm.com/eserver/support/fixes/ 
  22. Risk factor : High";
  23.  
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Check for patch IY52242"; 
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  33.  family["english"] = "AIX Local Security Checks";
  34.  script_family(english:family["english"]);
  35.  
  36.  script_dependencies("ssh_get_info.nasl");
  37.  script_require_keys("Host/AIX/lslpp");
  38.  exit(0);
  39. }
  40.  
  41.  
  42.  
  43. include("aix.inc");
  44.  
  45.  if( aix_check_patch(release:"5.2", patch:"IY52242", package:"bos.rte.filesystem.5.2.0.17") < 0 ) 
  46.    security_hole(port);
  47.